home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2001 December / maximum-cd-2001-12.iso / Files / Intel / Active Monitor / IntelActiveMonitor.exe / IntelCPU.CTV < prev    next >
Encoding:
Text File  |  2001-08-20  |  5.0 KB  |  176 lines

  1. ; Intel(R) Active Monitor
  2. ; CPU Threshold Value File
  3. ;
  4. ; IntelCPU.CTV
  5. ;
  6. ; This file is used to determine the appropriate thermal
  7. ; threshold value for Intel based processors.  The
  8. ; determination is made based on three criteria: CPU type,
  9. ; CPU speed, external bus speed, and L2 cache size.  This
  10. ; file contains a table of values that correlates Intel
  11. ; processors to their respective thermal thresholds.
  12. ;
  13. ; All lines preceded with a semicolon are ignored by
  14. ; Intel Active Monitor.
  15. ;
  16. ; There are two "keyed" sections in this file.  Each key
  17. ; corresponds to a data segment.  The first key, GLOBAL,
  18. ; corresponds to global settings that are used by the
  19. ; program.  Currently, there is only one global value,
  20. ; DEFAULT.  DEFAULT specifies the threshold value for
  21. ; processors that are not defined in this list.
  22. ;
  23. ; The second key, TABLE, contains a table of processors
  24. ; and their respective thresholds.  The software will parse
  25. ; the table in sequential order until a match is found for
  26. ; the type, speed, bus speed, and cache size corresponding
  27. ; to the processor in the target system.
  28. ;
  29. ; Within the TABLE key, each line must follow a
  30. ; restrictive format.  Each line is a comma-delimited list
  31. ; of five values:
  32. ;
  33. ;     CPU Type         :  The type of CPU in the system.  It
  34. ;                         must be a code specified in the
  35. ;                         following list:
  36. ;
  37. ;                              C  - Intel Celeron(R)
  38. ;                              P2 - Intel Pentium(R) II
  39. ;                              P3 - Intel Pentium III
  40. ;
  41. ;     CPU Speed        :  The speed of the processor.  This
  42. ;                         number must be prefixed by =, <, or
  43. ;                         >.  This operator is used to compare
  44. ;                         the system processor to the table
  45. ;                         value.
  46. ;
  47. ;     CPU Bus Speed    :  The external bus speed of the
  48. ;                         processor.  This number must be
  49. ;                         prefixed by =, <, or >.  This operator
  50. ;                         is used to compare the system processor
  51. ;                         to the table value.
  52. ;
  53. ;     L2 Cache Size    :  The Level 2 cache size of the processor.
  54. ;                         This number must be prefixed by =, <,
  55. ;                         or >.  This operator is used to compare
  56. ;                         the system processor to the table value.
  57. ;
  58. ;     Threshold        :  This is the threshold value for the
  59. ;                         processor, in degrees Celsius.
  60. ;
  61. ; ***********
  62. ; EXTRA NOTES
  63. ; ***********
  64. ;
  65. ; Do not place any spaces in any line of the table.  This will
  66. ; cause Intel Active Monitor to ignore the line while parsing.
  67. ; Also, be sure to prefix each number with the appropriate
  68. ; operator.  A number without an operator (except for the
  69. ; threshold value itself) will be ignored.
  70. ;
  71. ; All keys and tokens must be in all caps.  In other words,
  72. ; the GLOBAL and TABLE keys must be in all capital
  73. ; letters, otherwise they will not be recognized.
  74. ;
  75. ; A threshold of 0 indicates that thermal monitoring is not
  76. ; supported by the corresponding processor.
  77. ;
  78. ; ********************
  79. ; SAMPLE TABLE ENTRIES
  80. ; ********************
  81. ;
  82. ;    INCORRECT/INVALID   -   "P3, =500, =100, =512, 85"
  83. ;       Do not place spaces in the line, this will cause the
  84. ;       line to be ignored.
  85. ;
  86. ;    INCORRECT/INVALID   -   "P3,500,100,512,85"
  87. ;       In this example, there are no operators prefixing the
  88. ;       numbers.
  89. ;
  90. ;    INCORRECT/INVALID   -   "P3,=500,=100,=512,=85"
  91. ;       There cannot be an equals operator on the threshold
  92. ;       value.
  93. ;
  94. ;    CORRECT             -   "P3,=500,=100,=512,85"
  95.  
  96. [GLOBAL]
  97.  
  98. DEFAULT=75
  99.  
  100. [TABLE]
  101.  
  102. ; Celeron Thresholds
  103.  
  104. C,=266,>0,>0,85
  105. C,=300,>0,>0,85
  106. C,=333,>0,>0,85
  107. C,=350,>0,>0,85
  108. C,=366,>0,>0,85
  109. C,=400,>0,>0,85
  110. C,=433,>0,>0,85
  111. C,=466,>0,>0,85
  112. C,=500,>0,>0,85
  113. C,=533,>0,>0,85
  114. C,=566,>0,>0,85
  115. C,=600,>0,>0,85
  116. C,=633,>0,>0,80
  117. C,=650,>0,>0,80
  118. C,=667,>0,>0,77
  119. C,=700,>0,>0,75
  120. C,=733,>0,>0,75
  121. C,=766,>0,>0,75
  122. C,=800,>0,>0,75
  123. C,=850,>0,>0,75
  124. C,=900,>0,>0,72
  125. C,>900,>0,>0,72
  126.  
  127. ; Pentium II Thresholds
  128.  
  129. P2,=233,>0,>0,0
  130. P2,=266,>0,>0,0
  131. P2,=300,>0,>0,0
  132. P2,=333,>0,>0,0
  133. P2,=350,>0,>0,85
  134. P2,=400,>0,>0,85
  135. P2,=450,>0,>0,85
  136. P2,>450,>0,>0,85
  137.  
  138. ; Pentium III Thresholds
  139.  
  140. P3,=400,=133,=512,85
  141. P3,=450,=100,=512,85
  142. P3,=500,=100,=512,85
  143. P3,=500,=100,=256,80
  144. P3,=533,=133,=512,85
  145. P3,=533,=133,=256,77
  146. P3,=550,=100,=512,75
  147. P3,=550,=100,=256,77
  148. P3,=600,=100,=512,80
  149. P3,=600,=133,=512,80
  150. P3,=600,=100,=256,77
  151. P3,=600,=133,=256,77
  152. P3,=650,=100,=256,77
  153. P3,=667,=133,=256,77
  154. P3,=700,=100,=256,75
  155. P3,=733,=133,=256,75
  156. P3,=750,=100,=256,75
  157. P3,=800,=100,=256,75
  158. P3,=800,=133,=256,75
  159. P3,=850,=100,=256,75
  160. P3,=866,=133,=256,75
  161. P3,=933,=133,=256,70
  162. P3,=1000,=100,=256,70
  163. P3,=1000,=133,=256,70
  164. P3,=1000,=133,>256,70
  165. P3,=1066,=133,=256,73
  166. P3,=1066,=133,>256,73
  167. P3,=1100,=100,=256,73
  168. P3,=1100,=100,>256,73
  169. P3,=1133,=133,=256,73
  170. P3,=1133,=133,>256,73
  171. P3,>1133,>0,>0,73
  172.  
  173. ; Pentium 4 Thresholds
  174.  
  175. P4,>0,>0,>0,70
  176.